home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2000 #5
/
Amiga Plus CD - 2000 - No. 5.iso
/
Tools
/
Dev
/
fpc
/
source
/
docs
/
crtex
/
ex1.pp
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2000-01-01
|
240 b
|
14 lines
Program Example1;
uses Crt;
{ Program to demonstrate the AssignCrt function. }
var
F : Text;
begin
AssignCrt(F);
Rewrite(F); { Don't forget to open for output! }
WriteLn(F,'This is written to the Assigned File');
Close(F);
end.